home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK1.toast / Development Kits (Disc 1) / AppleScript / Development Tools / Tools Goodies / AEGizmos 1.4.1 / Headers / AEPrint.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-17  |  415 b   |  25 lines  |  [TEXT/MMCC]

  1. /*
  2.  *    AEPrint.h                                        Copyright ©1991-1993 Apple Computer, Inc.
  3.  */
  4.  
  5. #pragma once
  6.  
  7. #ifndef __AEPRINT__
  8. #define __AEPRINT__
  9.  
  10. #ifndef __APPLEEVENTS__
  11. #include <AppleEvents.h>
  12. #endif
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17.  
  18. OSErr AEPrint( AEDesc *desc, char *bufStr, long bufSize );
  19. OSErr AEPrintSize( AEDesc *desc, long *stringLength );        // Just computes size (len+1) of string
  20.  
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24.  
  25. #endif